home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CMovieController 1.0 / Shell.cp < prev    next >
Encoding:
Text File  |  1994-11-30  |  476 b   |  27 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  
  3.   Shell.c
  4.  
  5.      A Shell main file for writing programs with the
  6.      THINK Class Library
  7.  
  8.   Copyright © 1990 Symantec Corporation.  All rights reserved.
  9.   
  10. ******************************************************************************/
  11.  
  12.  
  13. #include "CShellApp.h"
  14.  
  15.  
  16. void main()
  17.  
  18. {
  19.     CShellApp    *ShellApp;                    
  20.  
  21.     ShellApp = new CShellApp;
  22.     
  23.     ShellApp->IShellApp();
  24.     ShellApp->Run();
  25.     ShellApp->Exit();
  26. }
  27.